:root {
  --text-color: #000;
  --secondary-color: #5151ef;
  --main-color: white;
  --light-bg-color: rgb(246, 246, 246);
  --dark-bg-color: #0f0f28;
  --sub-text-color: #808080;
}

body {
  margin: 0;
  font-family:'Poppins', sans-serif;
  background: var(--light-bg-color);
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Hero */
.hero {
  background: var(--dark-bg-color);
  color: var(--main-color);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  color: var(--sub-text-color);
  font-size: 18px;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.service-card {
  position: relative;
  background: var(--main-color);
  padding: 30px 30px 90px; /* extra bottom padding */
  border-left: 5px solid var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 460px;

  h2{
    color: var(--dark-bg-color);
    padding-bottom: 20px;
    height: 90px;
  }
}

.card-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
}

.service-card ul {
  padding-left: 20px;
  color: var(--dark-bg-color);
  margin-bottom: 0;
  
}

.service-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-left: 18px;
  padding-bottom: 10px;
}

.service-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}
.service-card ul li:has(.and-more)::before {
  content: none;
}

.and-more {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.and-more:hover {
  text-decoration: underline;
  cursor: pointer;
}


.btn-glow {
  align-self: flex-start;
}


/* CTA */
.cta {
  text-align: center;
  background: var(--secondary-color);
  color: var(--main-color);
  padding: 60px 20px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-top: 60px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f4f4f4;
}

.cta-btn {
  background: var(--main-color);
  color: var(--secondary-color);
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #eeeeff;
}

.btn-glow {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--secondary-color), #6c63ff);
  color: var(--main-color);
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(81, 81, 239, 0.4);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: 0.75s;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(81, 81, 239, 0.6);
}

.btn-glow:hover::before {
  left: 100%;
}


/* Responsive */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}
